home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-22 | 942 b | 34 lines | [TEXT/CWIE] |
- // Release Version: $ ODF 2 $
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
-
- #ifndef FRAME_H
- #define FRAME_H
-
- //=======================================================================
- // ----- Framework Includes -----
- #ifndef FWFRAME_H
- #include <FWFrame.h> // FW_CFrame
- #endif
-
- //=======================================================================
- class CSample1Part;
-
- //=======================================================================
- class CSample1Frame : public FW_CFrame {
- public:
- FW_DECLARE_AUTO(CSample1Frame)
- CSample1Frame(Environment* ev,
- ODFrame* odFrame,
- FW_CPresentation* presentation,
- CSample1Part* sample1Part);
- virtual ~CSample1Frame();
- protected:
- // overrides
- virtual void Draw(Environment* ev,
- ODFacet* odFacet,
- ODShape* invalidShape);
- };
-
- //=======================================================================
- #endif
-